{
GArray *shadows = out_shadows;
- for (;;)
+ do
{
- GskShadow shadow = { {0, 0, 0, 1}, 0, 0, 0 };
+ GskShadow shadow = { GDK_RGBA("000000"), 0, 0, 0 };
double dx = 0, dy = 0, radius = 0;
if (!gdk_rgba_parser_parse (parser, &shadow.color))
gtk_css_parser_error_value (parser, "Expected shadow x offset");
if (!gtk_css_parser_consume_number (parser, &dy))
- gtk_css_parser_error_value (parser, "Expected shadow x offset");
+ gtk_css_parser_error_value (parser, "Expected shadow y offset");
- if (!gtk_css_parser_consume_number (parser, &radius))
- gtk_css_parser_error_value (parser, "Expected shadow blur radius");
+ if (gtk_css_parser_has_number (parser))
+ {
+ if (!gtk_css_parser_consume_number (parser, &radius))
+ gtk_css_parser_error_value (parser, "Expected shadow blur radius");
+ }
shadow.dx = dx;
shadow.dy = dy;
shadow.radius = radius;
g_array_append_val (shadows, shadow);
-
- if (gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_COMMA))
- gtk_css_parser_skip (parser);
- else
- break;
}
+ while (gtk_css_parser_try_token (parser, GTK_CSS_TOKEN_COMMA));
return TRUE;
}
return FALSE;
}
-static gboolean
-parse_font (GtkCssParser *parser,
- gpointer out_font)
+static PangoFont *
+font_from_string (const char *string)
{
- const GtkCssToken *token;
PangoFontDescription *desc;
PangoFontMap *font_map;
PangoContext *context;
PangoFont *font;
- token = gtk_css_parser_get_token (parser);
- if (!gtk_css_token_is (token, GTK_CSS_TOKEN_STRING))
- return FALSE;
-
- desc = pango_font_description_from_string (token->string.string);
+ desc = pango_font_description_from_string (string);
font_map = pango_cairo_font_map_get_default ();
context = pango_font_map_create_context (font_map);
font = pango_font_map_load_font (font_map, context, desc);
pango_font_description_free (desc);
g_object_unref (context);
+ return font;
+}
+
+static gboolean
+parse_font (GtkCssParser *parser,
+ gpointer out_font)
+{
+ PangoFont *font;
+ char *s;
+
+ s = gtk_css_parser_consume_string (parser);
+ if (s == NULL)
+ return FALSE;
+
+ font = font_from_string (s);
+ if (font == NULL)
+ {
+ gtk_css_parser_error_syntax (parser, "This font does not exist.");
+ return FALSE;
+ }
+
*((PangoFont**)out_font) = font;
- /* Skip font name token */
- gtk_css_parser_consume_token (parser);
+ g_free (s);
return TRUE;
}
parse_glyphs (GtkCssParser *parser,
gpointer out_glyphs)
{
- GArray *glyphs;
PangoGlyphString *glyph_string;
- int i;
- glyphs = g_array_new (FALSE, TRUE, sizeof (double[5]));
+ glyph_string = pango_glyph_string_new ();
- for (;;)
+ do
{
- double values[5];
+ PangoGlyphInfo gi = { 0, { 0, 0, 0}, { 1 } };
+ double d, d2;
+ int i;
- /* We have 5 numbers per glyph */
- for (i = 0; i < 5; i ++)
+ if (!gtk_css_parser_consume_integer (parser, &i) ||
+ !gtk_css_parser_consume_number (parser, &d))
{
- if (!gtk_css_parser_consume_number (parser, &values[i]))
- return FALSE;
+ pango_glyph_string_free (glyph_string);
+ return FALSE;
}
+ gi.glyph = i;
+ gi.geometry.width = (int) (d * PANGO_SCALE);
- g_array_append_val (glyphs, values);
-
- if (gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_COMMA))
- gtk_css_parser_skip (parser);
- else
- break;
- }
-
- glyph_string = pango_glyph_string_new ();
- pango_glyph_string_set_size (glyph_string, glyphs->len);
-
- for (i = 0; i < glyphs->len; i ++)
- {
- PangoGlyphInfo g;
- double *v = (double *)(glyphs->data + (i * sizeof (double) * 5));
+ if (gtk_css_parser_has_number (parser))
+ {
+ if (!gtk_css_parser_consume_number (parser, &d) ||
+ !gtk_css_parser_consume_number (parser, &d2))
+ {
+ pango_glyph_string_free (glyph_string);
+ return FALSE;
+ }
+ gi.geometry.x_offset = (int) (d * PANGO_SCALE);
+ gi.geometry.y_offset = (int) (d2 * PANGO_SCALE);
- g.glyph = (guint)v[0];
- g.geometry.width = (int)v[1];
- g.geometry.x_offset = (int)v[2];
- g.geometry.y_offset = (int)v[3];
- g.attr.is_cluster_start = (int)v[4];
+ if (gtk_css_parser_try_ident (parser, "same-cluster"))
+ gi.attr.is_cluster_start = 0;
+ else
+ gi.attr.is_cluster_start = 1;
+ }
- glyph_string->glyphs[i] = g;
+ pango_glyph_string_set_size (glyph_string, glyph_string->num_glyphs + 1);
+ glyph_string->glyphs[glyph_string->num_glyphs - 1] = gi;
}
-
- g_array_free (glyphs, TRUE);
+ while (gtk_css_parser_try_token (parser, GTK_CSS_TOKEN_COMMA));
*((PangoGlyphString **)out_glyphs) = glyph_string;
return parsed;
}
+static GskRenderNode *
+create_default_render_node (void)
+{
+ return gsk_color_node_new (&GDK_RGBA("FF00CC"), &GRAPHENE_RECT_INIT (0, 0, 50, 50));
+}
+
static GskRenderNode *
parse_color_node (GtkCssParser *parser)
{
- graphene_rect_t bounds = GRAPHENE_RECT_INIT (0, 0, 0, 0);
- GdkRGBA color = GDK_RGBA("FF0000");
+ graphene_rect_t bounds = GRAPHENE_RECT_INIT (0, 0, 50, 50);
+ GdkRGBA color = GDK_RGBA("FF00CC");
const Declaration declarations[] = {
{ "bounds", parse_rect, NULL, &bounds },
{ "color", parse_color, NULL, &color },
static GskRenderNode *
parse_linear_gradient_node (GtkCssParser *parser)
{
- graphene_rect_t bounds = GRAPHENE_RECT_INIT (0, 0, 0, 0);
+ graphene_rect_t bounds = GRAPHENE_RECT_INIT (0, 0, 50, 50);
graphene_point_t start = GRAPHENE_POINT_INIT (0, 0);
- graphene_point_t end = GRAPHENE_POINT_INIT (0, 0);
+ graphene_point_t end = GRAPHENE_POINT_INIT (0, 50);
GArray *stops = NULL;
const Declaration declarations[] = {
{ "bounds", parse_rect, NULL, &bounds },
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (stops == NULL)
{
- gtk_css_parser_error_syntax (parser, "No color stops given");
- return NULL;
+ GskColorStop from = { 0.0, GDK_RGBA("AAFF00") };
+ GskColorStop to = { 1.0, GDK_RGBA("FF00CC") };
+
+ stops = g_array_new (FALSE, FALSE, sizeof (GskColorStop));
+ g_array_append_val (stops, from);
+ g_array_append_val (stops, to);
}
result = gsk_linear_gradient_node_new (&bounds, &start, &end, (GskColorStop *) stops->data, stops->len);
static GskRenderNode *
parse_inset_shadow_node (GtkCssParser *parser)
{
- GskRoundedRect outline = GSK_ROUNDED_RECT_INIT (0, 0, 0, 0);
+ GskRoundedRect outline = GSK_ROUNDED_RECT_INIT (0, 0, 50, 50);
GdkRGBA color = GDK_RGBA("000000");
double dx = 1, dy = 1, blur = 0, spread = 0;
const Declaration declarations[] = {
static GskRenderNode *
parse_border_node (GtkCssParser *parser)
{
- GskRoundedRect outline = GSK_ROUNDED_RECT_INIT (0, 0, 0, 0);
+ GskRoundedRect outline = GSK_ROUNDED_RECT_INIT (0, 0, 50, 50);
float widths[4] = { 1, 1, 1, 1 };
GdkRGBA colors[4] = { GDK_RGBA("000"), GDK_RGBA("000"), GDK_RGBA("000"), GDK_RGBA("000") };
const Declaration declarations[] = {
static GskRenderNode *
parse_texture_node (GtkCssParser *parser)
{
- graphene_rect_t bounds = GRAPHENE_RECT_INIT (0, 0, 0, 0);
+ graphene_rect_t bounds = GRAPHENE_RECT_INIT (0, 0, 50, 50);
GdkTexture *texture = NULL;
const Declaration declarations[] = {
{ "bounds", parse_rect, NULL, &bounds },
if (texture == NULL)
{
- gtk_css_parser_error_syntax (parser, "Missing \"texture\" property definition");
- return NULL;
+ static const guint32 pixels[100] = {
+ 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0, 0, 0, 0, 0,
+ 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0, 0, 0, 0, 0,
+ 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0, 0, 0, 0, 0,
+ 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0, 0, 0, 0, 0,
+ 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC,
+ 0, 0, 0, 0, 0, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC,
+ 0, 0, 0, 0, 0, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC,
+ 0, 0, 0, 0, 0, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC,
+ 0, 0, 0, 0, 0, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC, 0xFFFF00CC };
+ GBytes *bytes = g_bytes_new_static ((guchar *) pixels, 400);
+
+ texture = gdk_memory_texture_new (10, 10, GDK_MEMORY_DEFAULT, bytes, 40);
+ g_bytes_unref (bytes);
}
node = gsk_texture_node_new (texture, &bounds);
static GskRenderNode *
parse_outset_shadow_node (GtkCssParser *parser)
{
- GskRoundedRect outline = GSK_ROUNDED_RECT_INIT (0, 0, 0, 0);
+ GskRoundedRect outline = GSK_ROUNDED_RECT_INIT (0, 0, 50, 50);
GdkRGBA color = GDK_RGBA("000000");
double dx = 1, dy = 1, blur = 0, spread = 0;
const Declaration declarations[] = {
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- gsk_transform_unref (transform);
- return NULL;
- }
+ child = create_default_render_node ();
+
/* This is very much cheating, isn't it? */
if (transform == NULL)
transform = gsk_transform_new ();
parse_opacity_node (GtkCssParser *parser)
{
GskRenderNode *child = NULL;
- double opacity = 1.0;
+ double opacity = 0.5;
const Declaration declarations[] = {
{ "opacity", parse_double, NULL, &opacity },
{ "child", parse_node, clear_node, &child },
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
result = gsk_opacity_node_new (child, opacity);
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
graphene_vec4_init (&offset,
offset_rect.origin.x, offset_rect.origin.y,
GskRenderNode *result;
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
- if (start == NULL || end == NULL)
- {
- if (start == NULL)
- gtk_css_parser_error_syntax (parser, "Missing \"start\" property definition");
- if (end == NULL)
- gtk_css_parser_error_syntax (parser, "Missing \"end\" property definition");
- g_clear_pointer (&start, gsk_render_node_unref);
- g_clear_pointer (&end, gsk_render_node_unref);
- return NULL;
- }
+ if (start == NULL)
+ start = gsk_color_node_new (&GDK_RGBA("AAFF00"), &GRAPHENE_RECT_INIT (0, 0, 50, 50));
+ if (end == NULL)
+ end = create_default_render_node ();
result = gsk_cross_fade_node_new (start, end, progress);
GskRenderNode *result;
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
- if (bottom == NULL || top == NULL)
- {
- if (bottom == NULL)
- gtk_css_parser_error_syntax (parser, "Missing \"bottom\" property definition");
- if (top == NULL)
- gtk_css_parser_error_syntax (parser, "Missing \"top\" property definition");
- g_clear_pointer (&bottom, gsk_render_node_unref);
- g_clear_pointer (&top, gsk_render_node_unref);
- return NULL;
- }
+ if (bottom == NULL)
+ bottom = gsk_color_node_new (&GDK_RGBA("AAFF00"), &GRAPHENE_RECT_INIT (0, 0, 50, 50));
+ if (top == NULL)
+ top = create_default_render_node ();
result = gsk_blend_node_new (bottom, top, mode);
parse_result = parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
if (!(parse_result & (1 << 1)))
gsk_render_node_get_bounds (child, &bounds);
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
- if (!font || !glyphs)
+ if (font == NULL)
+ {
+ font = font_from_string ("Cantarell 11");
+ g_assert (font);
+ }
+
+ if (!glyphs)
return NULL;
result = gsk_text_node_new (font, glyphs, &color, &offset);
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
result = gsk_blur_node_new (child, blur_radius);
static GskRenderNode *
parse_clip_node (GtkCssParser *parser)
{
- graphene_rect_t clip = GRAPHENE_RECT_INIT (0, 0, 0, 0);
+ GskRoundedRect clip = GSK_ROUNDED_RECT_INIT (0, 0, 50, 50);
GskRenderNode *child = NULL;
const Declaration declarations[] = {
- { "clip", parse_rect, NULL, &clip },
+ { "clip", parse_rounded_rect, NULL, &clip },
{ "child", parse_node, clear_node, &child },
};
GskRenderNode *result;
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
- result = gsk_clip_node_new (child, &clip);
+ if (gsk_rounded_rect_is_rectilinear (&clip))
+ result = gsk_clip_node_new (child, &clip.bounds);
+ else
+ result = gsk_rounded_clip_node_new (child, &clip);
gsk_render_node_unref (child);
static GskRenderNode *
parse_rounded_clip_node (GtkCssParser *parser)
{
- GskRoundedRect clip = GSK_ROUNDED_RECT_INIT (0, 0, 0, 0);
+ GskRoundedRect clip = GSK_ROUNDED_RECT_INIT (0, 0, 50, 50);
GskRenderNode *child = NULL;
const Declaration declarations[] = {
{ "clip", parse_rounded_rect, NULL, &clip },
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
result = gsk_rounded_clip_node_new (child, &clip);
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
if (shadows->len == 0)
{
- gtk_css_parser_error_syntax (parser, "Need at least one shadow");
- return child;
+ GskShadow default_shadow = { GDK_RGBA("000000"), 1, 1, 0 };
+ g_array_append_val (shadows, default_shadow);
}
result = gsk_shadow_node_new (child, (GskShadow *)shadows->data, shadows->len);
parse_declarations (parser, declarations, G_N_ELEMENTS(declarations));
if (child == NULL)
- {
- gtk_css_parser_error_syntax (parser, "Missing \"child\" property definition");
- return NULL;
- }
+ child = create_default_render_node ();
result = gsk_debug_node_new (child, message);
static void
append_float_param (Printer *p,
const char *param_name,
- float value)
+ float value,
+ float default_value)
{
+ /* Don't approximate-compare here, better be topo verbose */
+ if (value == default_value)
+ return;
+
_indent (p);
g_string_append_printf (p->str, "%s: ", param_name);
string_append_double (p->str, value);
start_node (p, "cross-fade");
append_node_param (p, "end", gsk_cross_fade_node_get_end_child (node));
- append_float_param (p, "progress", gsk_cross_fade_node_get_progress (node));
+ append_float_param (p, "progress", gsk_cross_fade_node_get_progress (node), 0.5f);
append_node_param (p, "start", gsk_cross_fade_node_get_start_child (node));
end_node (p);
case GSK_LINEAR_GRADIENT_NODE:
{
const guint n_stops = gsk_linear_gradient_node_get_n_color_stops (node);
- const GskColorStop *stop;
+ const GskColorStop *stops = gsk_linear_gradient_node_peek_color_stops (node);
int i;
start_node (p, "linear-gradient");
append_point_param (p, "start", gsk_linear_gradient_node_peek_start (node));
_indent (p);
- g_string_append (p->str, "stops:");
- for (i = 0; i < n_stops - 1; i ++)
+ g_string_append (p->str, "stops: ");
+ for (i = 0; i < n_stops; i ++)
{
- stop = gsk_linear_gradient_node_peek_color_stops (node) + i;
+ if (i > 0)
+ g_string_append (p->str, ", ");
+ string_append_double (p->str, stops[i].offset);
g_string_append_c (p->str, ' ');
- string_append_double (p->str, stop->offset);
- g_string_append_c (p->str, ' ');
- append_rgba (p->str, &stop->color);
- g_string_append_c (p->str, ',');
+ append_rgba (p->str, &stops[i].color);
}
-
- /* Last one, no comma */
- stop = gsk_linear_gradient_node_peek_color_stops (node) + n_stops - 1;
- string_append_double (p->str, stop->offset);
- g_string_append_c (p->str, ' ');
- append_rgba (p->str, &stop->color);
g_string_append (p->str, ";\n");
end_node (p);
start_node (p, "opacity");
append_node_param (p, "child", gsk_opacity_node_get_child (node));
- append_float_param (p, "opacity", gsk_opacity_node_get_opacity (node));
+ append_float_param (p, "opacity", gsk_opacity_node_get_opacity (node), 0.5f);
end_node (p);
}
case GSK_OUTSET_SHADOW_NODE:
{
+ const GdkRGBA *color = gsk_outset_shadow_node_peek_color (node);
+
start_node (p, "outset-shadow");
- append_float_param (p, "blur", gsk_outset_shadow_node_get_blur_radius (node));
- append_rgba_param (p, "color", gsk_outset_shadow_node_peek_color (node));
- append_float_param (p, "dx", gsk_outset_shadow_node_get_dx (node));
- append_float_param (p, "dy", gsk_outset_shadow_node_get_dy (node));
+ append_float_param (p, "blur", gsk_outset_shadow_node_get_blur_radius (node), 0.0f);
+ if (!gdk_rgba_equal (color, &GDK_RGBA("000")))
+ append_rgba_param (p, "color", color);
+ append_float_param (p, "dx", gsk_outset_shadow_node_get_dx (node), 1.0f);
+ append_float_param (p, "dy", gsk_outset_shadow_node_get_dy (node), 1.0f);
append_rounded_rect_param (p, "outline", gsk_outset_shadow_node_peek_outline (node));
- append_float_param (p, "spread", gsk_outset_shadow_node_get_spread (node));
+ append_float_param (p, "spread", gsk_outset_shadow_node_get_spread (node), 0.0f);
end_node (p);
}
case GSK_TRANSFORM_NODE:
{
+ GskTransform *transform = gsk_transform_node_get_transform (node);
start_node (p, "transform");
append_node_param (p, "child", gsk_transform_node_get_child (node));
- append_transform_param (p, "transform", gsk_transform_node_get_transform (node));
+ if (gsk_transform_get_category (transform) != GSK_TRANSFORM_CATEGORY_IDENTITY)
+ append_transform_param (p, "transform", transform);
end_node (p);
}
start_node (p, "color-matrix");
append_node_param (p, "child", gsk_color_matrix_node_get_child (node));
- append_matrix_param (p, "matrix", gsk_color_matrix_node_peek_color_matrix (node));
- append_vec4_param (p, "offset", gsk_color_matrix_node_peek_color_offset (node));
+ if (!graphene_matrix_is_identity (gsk_color_matrix_node_peek_color_matrix (node)))
+ append_matrix_param (p, "matrix", gsk_color_matrix_node_peek_color_matrix (node));
+ if (!graphene_vec4_equal (gsk_color_matrix_node_peek_color_offset (node), graphene_vec4_zero ()))
+ append_vec4_param (p, "offset", gsk_color_matrix_node_peek_color_offset (node));
end_node (p);
}
n = 3;
else if (!gdk_rgba_equal (&colors[1], &colors[0]))
n = 2;
- else
+ else if (!gdk_rgba_equal (&colors[0], &GDK_RGBA("000000")))
n = 1;
+ else
+ n = 0;
if (n > 0)
{
n = 3;
else if (widths[1] != widths[0])
n = 2;
- else
+ else if (widths[0] != 1.0)
n = 1;
+ else
+ n = 0;
if (n > 0)
{
start_node (p, "shadow");
- _indent (p);
append_node_param (p, "child", gsk_shadow_node_get_child (node));
+ _indent (p);
g_string_append (p->str, "shadows: ");
for (i = 0; i < n_shadows; i ++)
{
const GskShadow *s = gsk_shadow_node_peek_shadow (node, i);
char *color;
+ if (i > 0)
+ g_string_append (p->str, ", ");
+
color = gdk_rgba_to_string (&s->color);
g_string_append (p->str, color);
g_string_append_c (p->str, ' ');
string_append_double (p->str, s->dx);
g_string_append_c (p->str, ' ');
string_append_double (p->str, s->dy);
- g_string_append_c (p->str, ' ');
- string_append_double (p->str, s->radius);
-
- if (i < n_shadows - 1)
- g_string_append (p->str, ", ");
+ if (s->radius > 0)
+ {
+ g_string_append_c (p->str, ' ');
+ string_append_double (p->str, s->radius);
+ }
g_free (color);
}
case GSK_INSET_SHADOW_NODE:
{
+ const GdkRGBA *color = gsk_inset_shadow_node_peek_color (node);
start_node (p, "inset-shadow");
- append_float_param (p, "blur", gsk_inset_shadow_node_get_blur_radius (node));
- append_rgba_param (p, "color", gsk_inset_shadow_node_peek_color (node));
- append_float_param (p, "dx", gsk_inset_shadow_node_get_dx (node));
- append_float_param (p, "dy", gsk_inset_shadow_node_get_dy (node));
+ append_float_param (p, "blur", gsk_inset_shadow_node_get_blur_radius (node), 0.0f);
+ if (!gdk_rgba_equal (color, &GDK_RGBA("000")))
+ append_rgba_param (p, "color", color);
+ append_float_param (p, "dx", gsk_inset_shadow_node_get_dx (node), 1.0f);
+ append_float_param (p, "dy", gsk_inset_shadow_node_get_dy (node), 1.0f);
append_rounded_rect_param (p, "outline", gsk_inset_shadow_node_peek_outline (node));
- append_float_param (p, "spread", gsk_inset_shadow_node_get_spread (node));
+ append_float_param (p, "spread", gsk_inset_shadow_node_get_spread (node), 0.0f);
end_node (p);
}
case GSK_TEXT_NODE:
{
const guint n_glyphs = gsk_text_node_get_num_glyphs (node);
- const PangoGlyphInfo *glyph;
+ const PangoGlyphInfo *glyphs = gsk_text_node_peek_glyphs (node);
const graphene_point_t *offset = gsk_text_node_get_offset (node);
+ const GdkRGBA *color = gsk_text_node_peek_color (node);
PangoFontDescription *desc;
char *font_name;
guint i;
start_node (p, "text");
- append_rgba_param (p, "color", gsk_text_node_peek_color (node));
+ if (!gdk_rgba_equal (color, &GDK_RGBA("000000")))
+ append_rgba_param (p, "color", color);
_indent (p);
desc = pango_font_describe ((PangoFont *)gsk_text_node_peek_font (node));;
_indent (p);
g_string_append (p->str, "glyphs: ");
- glyph = gsk_text_node_peek_glyphs (node);
- g_string_append_printf (p->str, "%u %i %i %i %i",
- glyph->glyph, glyph->geometry.width,
- glyph->geometry.x_offset, glyph->geometry.y_offset,
- glyph->attr.is_cluster_start);
- for (i = 1; i < n_glyphs; i ++)
+ for (i = 0; i < n_glyphs; i++)
{
- glyph = gsk_text_node_peek_glyphs (node) + i;
- g_string_append_printf (p->str, ", %u %i %i %i %i",
- glyph->glyph, glyph->geometry.width,
- glyph->geometry.x_offset, glyph->geometry.y_offset,
- glyph->attr.is_cluster_start);
+ if (i > 0)
+ g_string_append (p->str, ", ");
+ g_string_append_printf (p->str, "%u %g",
+ glyphs[i].glyph,
+ (double) glyphs[i].geometry.width / PANGO_SCALE);
+ if (!glyphs[i].attr.is_cluster_start ||
+ glyphs[i].geometry.x_offset != 0 ||
+ glyphs[i].geometry.y_offset != 0)
+ {
+ g_string_append_printf (p->str, "%g %g",
+ (double) glyphs[i].geometry.x_offset / PANGO_SCALE,
+ (double) glyphs[i].geometry.y_offset / PANGO_SCALE);
+ if (!glyphs[i].attr.is_cluster_start)
+ g_string_append (p->str, " same-cluster");
+ }
}
g_string_append_c (p->str, ';');
g_string_append_c (p->str, '\n');
case GSK_DEBUG_NODE:
{
+ const char *message = gsk_debug_node_get_message (node);
+
start_node (p, "debug");
- _indent (p);
append_node_param (p, "child", gsk_debug_node_get_child (node));
/* TODO: We potentially need to escape certain characters in the message */
- g_string_append_printf (p->str, "message: \"%s\";\n", gsk_debug_node_get_message (node));
+ if (message)
+ {
+ _indent (p);
+ g_string_append_printf (p->str, "message: \"%s\";\n", message);
+ }
end_node (p);
}
{
start_node (p, "blur");
- append_float_param (p, "blur", gsk_blur_node_get_radius (node));
+ append_float_param (p, "blur", gsk_blur_node_get_radius (node), 1.0f);
append_node_param (p, "child", gsk_blur_node_get_child (node));
end_node (p);
case GSK_REPEAT_NODE:
{
+ GskRenderNode *child = gsk_repeat_node_get_child (node);
+ const graphene_rect_t *child_bounds = gsk_repeat_node_peek_child_bounds (node);
+
start_node (p, "repeat");
- append_rect_param (p, "bounds", &node->bounds);
+ if (!graphene_rect_equal (&node->bounds, &child->bounds))
+ append_rect_param (p, "bounds", &node->bounds);
append_node_param (p, "child", gsk_repeat_node_get_child (node));
- append_rect_param (p, "child-bounds", gsk_repeat_node_peek_child_bounds (node));
+ if (!graphene_rect_equal (child_bounds, &child->bounds))
+ append_rect_param (p, "child-bounds", child_bounds);
end_node (p);
}
append_node_param (p, "bottom", gsk_blend_node_get_bottom_child (node));
- _indent (p);
- for (i = 0; i < G_N_ELEMENTS (blend_modes); i++)
+ if (mode != GSK_BLEND_MODE_DEFAULT)
{
- if (blend_modes[i].mode == mode)
+ _indent (p);
+ for (i = 0; i < G_N_ELEMENTS (blend_modes); i++)
{
- g_string_append_printf (p->str, "mode: %s;\n", blend_modes[i].name);
- break;
+ if (blend_modes[i].mode == mode)
+ {
+ g_string_append_printf (p->str, "mode: %s;\n", blend_modes[i].name);
+ break;
+ }
}
}
append_node_param (p, "top", gsk_blend_node_get_top_child (node));
spread: 2;
}
outset-shadow {
- blur: 0;
color: rgba(0,0,0,0.18);
dx: 0;
dy: 0;
bounds: -6 0 1464 46;
end: -6 23;
start: 1458 23;
- stops: 0.08 rgb(227,234,242),0.25 rgb(246,245,244);
+ stops: 0.08 rgb(227,234,242), 0.25 rgb(246,245,244);
}
clip: -6 0 1464 47 / 7 7 0 0;
}
clip: -6 0 1464 47 / 7 7 0 0;
}
inset-shadow {
- blur: 0;
color: rgba(255,255,255,0.8);
dx: 0;
- dy: 1;
outline: -6 0 1464 46 / 7 7 0 0;
- spread: 0;
}
}
border {
child: text {
color: rgb(46,52,54);
font: "Cantarell 11";
- glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
+ glyphs: 162 9, 244 8, 312 8, 287 8, 862 3, 678 7;
offset: 0 17;
}
transform: translate(28, 0);
child: text {
color: rgb(46,52,54);
font: "Cantarell 11";
- glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
+ glyphs: 162 9, 244 8, 312 8, 287 8, 862 3, 679 8;
offset: 0 17;
}
transform: translate(28, 0);
border {
colors: rgb(213,208,204);
outline: -17 -5 134 34 / 0 5 5 0;
- widths: 1;
}
transform {
child: text {
color: rgb(46,52,54);
font: "Cantarell 11";
- glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
+ glyphs: 162 9, 244 8, 312 8, 287 8, 862 3, 680 8;
offset: 0 17;
}
transform: translate(28, 0);
border {
colors: rgb(213,208,204);
outline: -6 -5 36 34 / 5;
- widths: 1;
}
color-matrix {
child: texture {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
+ glyphs: 273 7, 370 8, 358 13, 272 8, 370 8, 272 8, 370 8, 472 7, 287 8, 360 8, 430 5, 409 6, 473 7;
offset: 0 21;
}
clip {
text {
color: rgb(252,252,252);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
+ glyphs: 273 7, 370 8, 358 13, 272 8, 370 8, 272 8, 370 8, 472 7, 287 8, 360 8, 430 5, 409 6, 473 7;
offset: 0 21;
}
}
border {
colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(53,132,228);
outline: -10 -5 36 34 / 0 5 5 0;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
+ glyphs: 273 7, 370 8, 358 13, 272 8, 370 8, 272 8, 370 8, 472 7, 287 8, 360 8, 430 5, 409 6, 473 7;
offset: 0 21;
}
clip: 0 0 357 32;
border {
colors: rgb(213,208,204);
outline: -10 -5 36 34 / 0 5 5 0;
- widths: 1;
}
color-matrix {
child: texture {
border {
colors: rgb(213,208,204);
outline: -9 -1 410 34 / 5;
- widths: 1;
}
clip {
child: opacity {
child: text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 30 10240 0 0 1, 349 4096 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 862 3072 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1, 862 3072 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 862 3072 0 0 1, 273 7168 0 0 1, 319 8192 0 0 1, 244 8192 0 0 1, 360 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 358 13312 0 0 1, 370 8192 0 0 1, 280 8192 0 0 1, 287 8192 0 0 1;
+ glyphs: 30 10, 349 4, 324 4, 273 7, 345 7, 862 3, 324 4, 273 7, 370 8, 360 8, 862 3, 430 5, 370 8, 862 3, 273 7, 319 8, 244 8, 360 8, 312 8, 287 8, 862 3, 358 13, 370 8, 280 8, 287 8;
offset: 0 21;
}
opacity: 0.54902;
border {
colors: rgb(213,208,204);
outline: -9 -1 410 34 / 5;
- widths: 1;
}
clip {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
+ glyphs: 287 8, 360 8, 430 5, 409 6, 473 7;
offset: 0 21;
}
clip: 0 0 392 32;
child: text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
+ glyphs: 287 8, 360 8, 430 5, 409 6, 473 7;
offset: 0 22;
}
clip: 0 0 357 33;
border {
colors: rgb(213,208,204);
outline: -6 -5 36 35 / 0 5 5 0;
- widths: 1;
}
color-matrix {
child: texture {
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 103 8192 0 0 1, 287 8192 0 0 1, 311 5120 0 0 1, 430 5120 0 0 1;
+ glyphs: 103 8, 287 8, 311 5, 430 5;
offset: 2 17;
}
transform {
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 113 13312 0 0 1, 324 4096 0 0 1, 280 8192 0 0 1, 280 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1;
+ glyphs: 113 13, 324 4, 280 8, 280 8, 349 4, 287 8;
offset: 2 17;
}
transform {
border {
colors: rgb(213,208,204);
outline: -10 -5 137 34 / 0 5 5 0;
- widths: 1;
}
container {
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 165 9216 0 0 1, 324 4096 0 0 1, 312 8192 0 0 1, 319 8192 0 0 1, 430 5120 0 0 1;
+ glyphs: 165 9, 324 4, 312 8, 319 8, 430 5;
offset: 2 17;
}
transform {
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 349 4096 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 287 8192 0 0 1, 349 4096 0 0 1;
+ glyphs: 349 4, 244 8, 272 8, 287 8, 349 4;
offset: 0 22;
}
transform {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 349 4096 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 287 8192 0 0 1, 349 4096 0 0 1;
+ glyphs: 349 4, 244 8, 272 8, 287 8, 349 4;
offset: 0 22;
}
transform: translate(52, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 112 34 / 5;
- widths: 1;
}
container {
transform {
child: text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 682 8192 0 0 1, 677 9216 0 0 1;
+ glyphs: 682 8, 677 9;
offset: 0 15;
}
transform: translate(6, 6);
border {
colors: rgb(213,208,204);
outline: -1 -1 112 34 / 5;
- widths: 1;
}
container {
transform {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 677 9216 0 0 1;
+ glyphs: 677 9;
offset: 0 15;
}
transform: translate(6, 6);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 3;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 273 7, 319 8, 287 8, 273 7, 345 7, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 3;
- widths: 1;
}
}
transform: translate(5, 2);
child: text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 273 7, 319 8, 287 8, 273 7, 345 7, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 3;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 273 7, 319 8, 287 8, 273 7, 345 7, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 3;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 273 7, 319 8, 287 8, 273 7, 345 7, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 3;
- widths: 1;
}
}
transform: translate(5, 2);
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 273 7, 319 8, 287 8, 273 7, 345 7, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 3;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 273 7, 319 8, 287 8, 273 7, 345 7, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 8;
- widths: 1;
}
}
transform: translate(5, 2);
child: text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 409 6, 244 8, 280 8, 324 4, 370 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 8;
- widths: 1;
}
}
transform: translate(5, 2);
child: text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 409 6, 244 8, 280 8, 324 4, 370 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 8;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 409 6, 244 8, 280 8, 324 4, 370 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 8;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 409 6, 244 8, 280 8, 324 4, 370 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 8;
- widths: 1;
}
}
transform: translate(5, 2);
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 409 6, 244 8, 280 8, 324 4, 370 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 16 16 / 8;
- widths: 1;
}
color-matrix {
child: texture {
child: text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 409 6, 244 8, 280 8, 324 4, 370 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 0 15;
}
transform: translate(24, 0);
border {
colors: rgb(213,208,204);
outline: -17 -5 122 34 / 5;
- widths: 1;
}
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 430 5, 370 8, 312 8, 312 8, 349 4, 287 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 2 17;
}
}
border {
colors: rgb(213,208,204);
outline: -17 -5 122 34 / 5;
- widths: 1;
}
text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 430 5, 370 8, 312 8, 312 8, 349 4, 287 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 2 17;
}
}
border {
colors: rgb(213,208,204);
outline: -17 -5 122 34 / 5;
- widths: 1;
}
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 430 5, 370 8, 312 8, 312 8, 349 4, 287 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 2 17;
}
}
border {
colors: rgb(213,208,204);
outline: -17 -5 122 34 / 5;
- widths: 1;
}
text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 430 5, 370 8, 312 8, 312 8, 349 4, 287 8, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 2 17;
}
}
border {
colors: rgb(213,208,204);
outline: -10 -5 122 34 / 5;
- widths: 1;
}
container {
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 1 10240 0 0 1, 360 8192 0 0 1, 280 8192 0 0 1, 409 6144 0 0 1, 287 8192 0 0 1, 244 8192 0 0 1;
+ glyphs: 1 10, 360 8, 280 8, 409 6, 287 8, 244 8;
offset: 2 17;
}
transform {
border {
colors: rgb(213,208,204);
outline: -10 -5 122 34 / 5;
- widths: 1;
}
container {
text {
color: rgb(212,207,202);
font: "Cantarell 11";
- glyphs: 126 11264 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1;
+ glyphs: 126 11, 430 5, 430 5, 370 8;
offset: 2 17;
}
transform {
border {
colors: rgb(213,208,204);
outline: -10 -5 122 34 / 5;
- widths: 1;
}
container {
text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 173 9216 0 0 1, 244 8192 0 0 1, 360 8192 0 0 1, 417 7168 0 0 1, 862 3072 0 0 1, 165 9216 0 0 1, 287 8192 0 0 1, 312 8192 0 0 1, 438 8192 0 0 1, 349 4096 0 0 1, 244 8192 0 0 1, 409 6144 0 0 1;
+ glyphs: 173 9, 244 8, 360 8, 417 7, 862 3, 165 9, 287 8, 312 8, 438 8, 349 4, 244 8, 409 6;
offset: 0 17;
}
transform {
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 678 7168 0 0 1, 679 8192 0 0 1;
+ glyphs: 678 7, 679 8;
offset: 0 17;
}
transform: translate(1, 0);
border {
colors: rgb(213,208,204);
outline: -5 -5 122 34 / 5;
- widths: 1;
}
container {
color {
child: border {
colors: rgba(0,0,0,0.3);
outline: -1 -1 112 24;
- widths: 1;
}
transform: translate(1, 1);
}
border {
colors: rgb(213,208,204);
outline: -10 -5 122 34 / 5;
- widths: 1;
}
container {
transform {
child: text {
color: rgb(146,149,149);
font: "Cantarell 11";
- glyphs: 822 4096 0 0 1, 115 11264 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1, 287 8192 0 0 1, 823 4096 0 0 1;
+ glyphs: 822 4, 115 11, 370 8, 360 8, 287 8, 823 4;
offset: 0 17;
}
transform: translate(16, 0);
text {
color: rgb(53,132,228);
font: "Cantarell 11";
- glyphs: 349 4096 0 0 1, 324 4096 0 0 1, 360 8192 0 0 1, 345 7168 0 0 1, 862 3072 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 349 4, 324 4, 360 8, 345 7, 862 3, 272 8, 438 8, 430 5, 430 5, 370 8, 360 8;
offset: 10 17;
}
color {
border {
colors: rgb(213,208,204);
outline: -1 -1 50 26 / 13;
- widths: 1;
}
container {
rounded-clip {
border {
colors: rgb(213,208,204);
outline: -1 -1 26 26 / 13;
- widths: 1;
}
}
}
border {
colors: rgb(213,208,204);
outline: -1 -1 50 26 / 13;
- widths: 1;
}
container {
rounded-clip {
border {
colors: rgb(213,208,204);
outline: -1 -1 26 26 / 13;
- widths: 1;
}
}
}
border {
colors: rgb(213,208,204);
outline: -1 -1 502 4 / 2;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(53,132,228);
outline: -1 -1 252 4 / 2 1.5 1.5 2;
- widths: 1;
}
}
transform: translate(0, -1) translate(0, 1);
border {
colors: rgb(213,208,204);
outline: -1 -1 502 4 / 2;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(53,132,228);
outline: -1 -1 252 4 / 1.5 2 2 1.5;
- widths: 1;
}
}
transform: translate(250, -1) translate(0, 1);
child: text {
color: rgba(46,52,54,0.4);
font: "Cantarell 9.1669921875";
- glyphs: 682 7168 0 0 1, 677 8192 0 0 1, 859 1024 0 0 1, 919 12288 0 0 1;
+ glyphs: 682 7, 677 8, 859 1, 919 12;
offset: 0 13;
}
transform: translate(237, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 502 4 / 2;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(53,132,228);
outline: -1 -1 102 4 / 1.5;
- widths: 1;
}
}
transform: translate(43, -1) translate(0, 1);
border {
colors: rgb(213,208,204);
outline: -3 -3 502 9 / 3;
- widths: 1;
}
transform {
child: border {
colors: rgba(146,149,149,0.15);
outline: -1 -1 496 3 / 1;
- widths: 1;
}
transform: translate(1, 1);
}
border {
colors: rgb(53,132,228);
outline: -1 -1 297 3 / 1;
- widths: 1;
}
}
transform: translate(1, 1);
border {
colors: rgb(213,208,204);
outline: -3 -3 502 9 / 3;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(53,132,228);
outline: -1 -1 97 3 / 1;
- widths: 1;
}
}
transform: translate(2, 1);
border {
colors: rgb(53,132,228);
outline: -1 -1 97 3 / 1;
- widths: 1;
}
}
transform: translate(99, 0) translate(2, 1);
child: border {
colors: rgba(146,149,149,0.15);
outline: -1 -1 97 3 / 1;
- widths: 1;
}
transform: translate(198, 0) translate(2, 1);
}
child: border {
colors: rgba(146,149,149,0.15);
outline: -1 -1 97 3 / 1;
- widths: 1;
}
transform: translate(297, 0) translate(2, 1);
}
child: border {
colors: rgba(146,149,149,0.15);
outline: -1 -1 97 3 / 1;
- widths: 1;
}
transform: translate(396, 0) translate(2, 1);
}
border {
colors: rgb(213,208,204);
outline: -1 -1 478 4 / 2;
- widths: 1;
}
container {
rounded-clip {
border {
colors: rgb(53,132,228);
outline: -1 -1 237 4 / 2;
- widths: 1;
}
}
transform {
border {
colors: rgb(213,208,204);
outline: -1 -1 20 20 / 10;
- widths: 1;
}
}
transform: translate(234, 0) translate(-8, -8);
border {
colors: rgb(213,208,204);
outline: -1 -1 478 4 / 2;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(213,208,204);
outline: -1 -1 20 20 / 10;
- widths: 1;
}
}
transform: translate(234, 0) translate(-8, -8);
border {
colors: rgb(213,208,204);
outline: -1 -1 478 4 / 2;
- widths: 1;
}
transform {
child: texture {
border {
colors: rgb(213,208,204);
outline: -1 -1 4 362 / 2;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(53,132,228);
outline: -1 -1 4 182 / 2 2 1.5 1.5;
- widths: 1;
}
}
transform: translate(-1, 0) translate(1, 0);
border {
colors: rgb(213,208,204);
outline: -1 -1 4 362 / 2;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(53,132,228);
outline: -1 -1 4 182 / 1.5 1.5 2 2;
- widths: 1;
}
}
transform: translate(-1, 180) translate(1, 0);
text {
color: rgba(146,149,149,0.55);
font: "Cantarell 11";
- glyphs: 682 8192 0 0 1, 677 9216 0 0 1, 805 4096 0 0 1, 677 9216 0 0 1;
+ glyphs: 682 8, 677 9, 805 4, 677 9;
offset: 26 15;
}
transform {
border {
colors: rgb(213,208,204);
outline: -1 -1 4 310 / 2;
- widths: 1;
}
container {
rounded-clip {
border {
colors: rgb(53,132,228);
outline: -1 -1 4 154 / 2;
- widths: 1;
}
}
transform {
border {
colors: rgb(213,208,204);
outline: -1 -1 20 20 / 10;
- widths: 1;
}
}
transform: translate(0, 151) translate(-8, -8);
text {
color: rgba(146,149,149,0.55);
font: "Cantarell 11";
- glyphs: 682 8192 0 0 1, 677 9216 0 0 1, 805 4096 0 0 1, 677 9216 0 0 1;
+ glyphs: 682 8, 677 9, 805 4, 677 9;
offset: 26 15;
}
transform {
border {
colors: rgb(213,208,204);
outline: -1 -1 4 310 / 2;
- widths: 1;
}
transform {
child: container {
border {
colors: rgb(213,208,204);
outline: -1 -1 20 20 / 10;
- widths: 1;
}
}
transform: translate(0, 151) translate(-8, -8);
border {
colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
outline: -1 -1 114 135;
- widths: 1;
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 81 4096 0 0 1, 360 8192 0 0 1, 417 7168 0 0 1, 287 8192 0 0 1, 430 6144 0 0 1;
+ glyphs: 81 4, 360 8, 417 7, 287 8, 430 6;
offset: 0 15;
}
}
border {
colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
outline: -1 -1 114 135;
- widths: 1;
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 126 11264 0 0 1, 438 8192 0 0 1, 430 6144 0 0 1, 417 7168 0 0 1, 287 8192 0 0 1, 430 6144 0 0 1;
+ glyphs: 126 11, 438 8, 430 6, 417 7, 287 8, 430 6;
offset: 0 15;
}
}
border {
colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
outline: -2 -2 114 135;
- widths: 1;
}
border {
colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
outline: -1 -1 112 133;
- widths: 1;
}
border {
colors: rgba(0,0,0,0);
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 69 11264 0 0 1, 409 6144 0 0 1, 370 8192 0 0 1, 370 8192 0 0 1, 466 7168 0 0 1, 287 8192 0 0 1;
+ glyphs: 69 11, 409 6, 370 8, 370 8, 466 7, 287 8;
offset: 0 15;
}
}
border {
colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
outline: -2 -2 114 135;
- widths: 1;
}
border {
colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
outline: -1 -1 112 133;
- widths: 1;
}
border {
colors: rgba(0,0,0,0);
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 165 10240 0 0 1, 324 4096 0 0 1, 280 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1;
+ glyphs: 165 10, 324 4, 280 8, 312 8, 287 8;
offset: 0 15;
}
}
border {
colors: rgb(213,208,204);
outline: -1 -1 212 289;
- widths: 1;
}
color {
bounds: 204 281 6 6;
border {
colors: rgb(213,208,204);
outline: 13 28 16 16 / 3;
- widths: 1;
}
color-matrix {
child: texture {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 1 10240 0 0 1, 360 8192 0 0 1, 280 8192 0 0 1, 409 6144 0 0 1, 287 8192 0 0 1, 244 8192 0 0 1;
+ glyphs: 1 10, 360 8, 280 8, 409 6, 287 8, 244 8;
offset: 86 42;
}
color {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 30 10240 0 0 1, 324 4096 0 0 1, 358 13312 0 0 1, 324 4096 0 0 1;
+ glyphs: 30 10, 324 4, 358 13, 324 4;
offset: 157 42;
}
color {
border {
colors: rgb(213,208,204);
outline: 13 51 16 16 / 3;
- widths: 1;
}
}
color {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 126 11264 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1;
+ glyphs: 126 11, 430 5, 430 5, 370 8;
offset: 86 65;
}
color {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 244 8192 0 0 1, 370 8192 0 0 1, 430 5120 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1;
+ glyphs: 273 7, 319 8, 244 8, 370 8, 430 5, 324 4, 273 7;
offset: 157 65;
}
color {
border {
colors: rgb(213,208,204);
outline: 13 74 16 16 / 3;
- widths: 1;
}
color-matrix {
child: texture {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 126 11264 0 0 1, 409 6144 0 0 1, 466 7168 0 0 1, 324 4096 0 0 1, 349 4096 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1;
+ glyphs: 126 11, 409 6, 466 7, 324 4, 349 4, 349 4, 287 8;
offset: 86 88;
}
color {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 165 9216 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 165 9, 287 8, 280 8, 287 8, 360 8;
offset: 157 88;
}
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 809 10240 0 0 1;
+ glyphs: 809 10;
offset: 198 88;
}
}
border {
colors: rgb(213,208,204);
outline: 13 97 16 16 / 8;
- widths: 1;
}
color-matrix {
child: texture {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 29 10240 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 341 4096 0 0 1, 244 8192 0 0 1, 358 13312 0 0 1, 324 4096 0 0 1, 360 8192 0 0 1;
+ glyphs: 29 10, 287 8, 360 8, 341 4, 244 8, 358 13, 324 4, 360 8;
offset: 86 111;
}
color {
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 30 10240 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 406 8192 0 0 1;
+ glyphs: 30 10, 370 8, 358 13, 406 8;
offset: 157 111;
}
text {
color: rgb(50,50,50);
font: "Cantarell 11";
- glyphs: 809 10240 0 0 1;
+ glyphs: 809 10;
offset: 196 111;
}
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 30 9216 0 0 1, 370 8192 0 0 1, 370 8192 0 0 1, 349 4096 0 0 1;
+ glyphs: 30 9, 370 8, 370 8, 349 4;
offset: 0 17;
}
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 81 4096 0 0 1, 273 7168 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
+ glyphs: 81 4, 273 7, 370 8, 360 8;
offset: 0 17;
}
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 115 11264 0 0 1, 244 8192 0 0 1, 358 13312 0 0 1, 287 8192 0 0 1;
+ glyphs: 115 11, 244 8, 358 13, 287 8;
offset: 0 17;
}
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 115 11264 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 345 8192 0 0 1;
+ glyphs: 115 11, 324 4, 273 7, 345 8;
offset: 0 17;
}
}
border {
colors: rgb(213,208,204);
outline: -1 -1 212 263;
- widths: 1;
}
container {
color {
border {
colors: rgb(213,208,204);
outline: -1 -1 354 142;
- widths: 1;
}
container {
transform {
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 680 8;
offset: 0 20;
}
transform: translate(149, 0) translate(16, 3);
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 679 8;
offset: 0 20;
}
transform: translate(74, 0) translate(16, 3);
transform {
child: container {
inset-shadow {
- blur: 0;
color: rgb(53,132,228);
dx: 0;
dy: -3;
outline: -12 -3 66 37;
- spread: 0;
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 678 7;
offset: 0 20;
}
}
border {
colors: rgb(213,208,204);
outline: -1 -1 354 142;
- widths: 1;
}
container {
color {
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 680 8;
offset: 0 20;
}
transform: translate(0, 88) translate(12, 7);
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 679 8;
offset: 0 20;
}
transform: translate(0, 44) translate(12, 7);
transform {
child: container {
inset-shadow {
- blur: 0;
color: rgb(53,132,228);
dx: 3;
dy: 0;
outline: -12 -3 67 36;
- spread: 0;
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 678 7;
offset: 0 20;
}
}
border {
colors: rgb(213,208,204);
outline: -1 -1 353 142;
- widths: 1;
}
container {
color {
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 680 8;
offset: 0 20;
}
transform: translate(149, 0) translate(16, 4);
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 679 8;
offset: 0 20;
}
transform: translate(74, 0) translate(16, 4);
transform {
child: container {
inset-shadow {
- blur: 0;
color: rgb(53,132,228);
dx: 0;
dy: 3;
outline: -12 -4 66 37;
- spread: 0;
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 678 7;
offset: 0 20;
}
}
border {
colors: rgb(213,208,204);
outline: -1 -1 353 142;
- widths: 1;
}
container {
transform {
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 680 8;
offset: 0 20;
}
transform: translate(0, 88) translate(12, 7);
child: text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 679 8;
offset: 0 20;
}
transform: translate(0, 44) translate(12, 7);
transform {
child: container {
inset-shadow {
- blur: 0;
color: rgb(53,132,228);
dx: -3;
dy: 0;
outline: -12 -3 67 36;
- spread: 0;
}
text {
color: rgb(146,149,149);
font: "Cantarell Bold 11";
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
+ glyphs: 406 8, 244 8, 312 8, 287 8, 862 3, 678 7;
offset: 0 20;
}
}